school
[[Studies/2502 Spring [Current]/CSC270/Chapter 1.pdf|Chapter 1]] Slide 26 going forward: Quiz 2

CPU Time = number of clock cycles / clock value

Clock Cycles = Instruction Count x Cycles Per Instruction

CPU TIME = Instruction Count x CPI x Clock Cycle Time

= Instruction Count x CPI / Clock Rate

Need to study this @home

THE BIG EQUATION

CPU Time = Instructions/Program x Clock cycles/Instruction x Seconds/Clock cycle

Algorithm Time Complexities

When it’s divide/multiply: it’s logn
When it’s subtract/add: it’s N
When it’s nested: N2

Synchronization not need to study Ch2